home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM A / PD-ROM A.iso / HyperCard / Misc / Contact / CopyContact.r < prev   
Encoding:
Text File  |  1990-02-24  |  1.3 KB  |  52 lines  |  [TEXT/MPS ]

  1. /*
  2. **
  3. ** Copies Contact only resources from one stack to another.
  4. ** Most of the resources are copied by name, except for FONDs
  5. ** and NFNTs, which are copied by number.
  6. **
  7. ** Example:  Rez -a -o UnixBrowser CopyContact.r
  8. **
  9. */
  10.  
  11. include "Contact" 'XFCN' ("Capture");
  12. include "Contact" 'XFCN' ("LookFor");
  13.  
  14. include "Contact" 'XCMD' ("Receive");
  15. include "Contact" 'XCMD' ("Keyboard");
  16. include "Contact" 'XCMD' ("Screen");
  17. include "Contact" 'XCMD' ("Serial");
  18. include "Contact" 'XCMD' ("Serve");
  19. include "Contact" 'XCMD' ("Terminal");
  20. include "Contact" 'XCMD' ("Type");
  21. include "Contact" 'XCMD' ("Transmit");
  22.  
  23. include "Contact" 'kbrd' ("Controls7");
  24. include "Contact" 'kbrd' ("Etc7");
  25. include "Contact" 'kbrd' ("Fkeys7");
  26. include "Contact" 'kbrd' ("NotKPAM7");
  27. include "Contact" 'kbrd' ("KPAM7");
  28.  
  29. include "Contact" 'ALRT' ("Nomem1");
  30. include "Contact" 'ALRT' ("Nomem2");
  31.  
  32. include "Contact" 'DITL' ("General");
  33. include "Contact" 'DITL' ("NoMem1");
  34. include "Contact" 'DITL' ("NoMem2");
  35. include "Contact" 'DITL' ("About");
  36.  
  37. include "Contact" 'DLOG' ("General");
  38. include "Contact" 'DLOG' ("About");
  39.  
  40. include "Contact" 'PICT' ("AboutPic");
  41.  
  42. include "Contact" 'DRVR' (".Contact");
  43.  
  44. include "Contact" 'WILD' ("ContactVersion");
  45.  
  46. /*
  47. ** Fonts are copied by number
  48. */
  49.  
  50. include "Contact" 'FOND' (16000:16002);
  51. include "Contact" 'NFNT' (16000:16005);
  52.